import { Alert, Platform, View } from "react-native"; import * as Haptics from "expo-haptics"; import { router, Stack, useLocalSearchParams } from "expo-router"; import UpdatingBookmarkList from "@/components/bookmarks/UpdatingBookmarkList"; import FullPageError from "@/components/FullPageError"; import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView"; import FullPageSpinner from "@/components/ui/FullPageSpinner"; import { api } from "@/lib/trpc"; import { MenuView } from "@react-native-menu/menu"; import { Ellipsis } from "lucide-react-native"; export default function ListView() { const { slug } = useLocalSearchParams(); if (typeof slug !== "string") { throw new Error("Unexpected param type"); } const { data: list, error, refetch, } = api.lists.get.useQuery({ listId: slug }); return ( , }} /> {error ? ( refetch()} /> ) : list ? ( ) : ( )} ); } function ListActionsMenu({ listId }: { listId: string }) { const { mutate } = api.lists.delete.useMutation({ onSuccess: () => { router.replace("/dashboard/lists"); }, }); const handleDelete = () => { Alert.alert("Delete List", "Are you sure you want to delete this list?", [ { text: "Cancel", style: "cancel" }, { text: "Delete", onPress: () => { mutate({ listId }); }, style: "destructive", }, ]); }; return ( { if (nativeEvent.event === "delete") { handleDelete(); } }} shouldOpenOnLongPress={false} > Haptics.selectionAsync()} color="gray" /> ); }